home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gspaint.c < prev    next >
C/C++ Source or Header  |  1997-06-10  |  9KB  |  309 lines

  1. /* Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gspaint.c */
  20. /* Painting procedures for Ghostscript library */
  21. #include "math_.h"            /* for fabs */
  22. #include "gx.h"
  23. #include "gpcheck.h"
  24. #include "gserrors.h"
  25. #include "gsropt.h"            /* for gxpaint.h */
  26. #include "gxfixed.h"
  27. #include "gxmatrix.h"            /* for gs_state */
  28. #include "gspaint.h"
  29. #include "gspath.h"
  30. #include "gzpath.h"
  31. #include "gxpaint.h"
  32. #include "gzstate.h"
  33. #include "gxdevice.h"
  34. #include "gxdevmem.h"
  35. #include "gxcpath.h"
  36.  
  37. /* Define the nominal size for alpha buffers. */
  38. #define abuf_nominal_SMALL 500
  39. #define abuf_nominal_LARGE 2000
  40. #if arch_small_memory
  41. #  define abuf_nominal abuf_nominal_SMALL
  42. #else
  43. #  define abuf_nominal\
  44.      (gs_if_debug_c('.') ? abuf_nominal_SMALL : abuf_nominal_LARGE)
  45. #endif
  46.  
  47. /* Erase the page */
  48. int
  49. gs_erasepage(gs_state *pgs)
  50. {    /* We can't just fill with device white; we must take the */
  51.     /* transfer function into account. */
  52.     int code;
  53.     if ( (code = gs_gsave(pgs)) < 0 )
  54.       return code;
  55.     if ( (code = gs_setgray(pgs, 1.0)) >= 0 )
  56.     {    /* Fill the page directly, ignoring clipping. */
  57.         code = gs_fillpage(pgs);
  58.     }
  59.     gs_grestore(pgs);
  60.     return code;
  61. }
  62.  
  63. /* Fill the page with the current color. */
  64. int
  65. gs_fillpage(gs_state *pgs)
  66. {    gx_device *dev;
  67.     int code;
  68.     gs_logical_operation_t save_lop;
  69.  
  70.     gx_set_dev_color(pgs);
  71.     dev = gs_currentdevice(pgs);
  72.     /* Fill the page directly, ignoring clipping. */
  73.     /* Use the default RasterOp. */
  74.     save_lop = pgs->log_op;
  75.     gs_init_rop(pgs);
  76.     code = gx_fill_rectangle(0, 0, dev->width, dev->height,
  77.                  pgs->dev_color, pgs);
  78.     pgs->log_op = save_lop;
  79.     if ( code < 0 )
  80.       return code;
  81.     return (*dev_proc(dev, sync_output))(dev);
  82. }
  83.  
  84. /*
  85.  * Determine the number of bits of alpha buffer for a stroke or fill.
  86.  * We should do alpha buffering iff this value is >1.
  87.  */
  88. private int near
  89. alpha_buffer_bits(gs_state *pgs)
  90. {    gx_device *dev;
  91.  
  92.     if ( !color_is_pure(pgs->dev_color) )
  93.       return 0;
  94.     dev = gs_currentdevice_inline(pgs);
  95.     if ( gs_device_is_abuf(dev) )
  96.       {    /* We're already writing into an alpha buffer. */
  97.         return 0;
  98.       }
  99.     return (*dev_proc(dev, get_alpha_bits))(dev, go_graphics);
  100. }
  101. /*
  102.  * Set up an alpha buffer for a stroke or fill operation.  Return 0
  103.  * if no buffer could be allocated, 1 if a buffer was installed,
  104.  * or the usual negative error code.
  105.  *
  106.  * The fill/stroke code sets up a clipping device if needed; however,
  107.  * since we scale up all the path coordinates, we either need to scale up
  108.  * the clipping region, or do clipping after, rather than before,
  109.  * alpha buffering.  Either of these is a little inconvenient, but
  110.  * the former is less inconvenient.
  111.  */
  112. private int near
  113. alpha_buffer_init(gs_state *pgs, fixed extra_x, fixed extra_y, int alpha_bits)
  114. {    gx_device *dev = gs_currentdevice_inline(pgs);
  115.     int log2_alpha_bits;
  116.     gs_fixed_rect bbox;
  117.     gs_int_rect ibox;
  118.     uint width, raster, band_space;
  119.     uint height;
  120.     gs_log2_scale_point log2_scale;
  121.     gs_memory_t *mem;
  122.     gx_device_memory *mdev;
  123.  
  124.     log2_alpha_bits = alpha_bits >> 1;    /* works for 1,2,4 */
  125.     log2_scale.x = log2_scale.y = log2_alpha_bits;
  126.     gx_path_bbox(pgs->path, &bbox);
  127.     ibox.p.x = fixed2int(bbox.p.x - extra_x) - 1;
  128.     ibox.p.y = fixed2int(bbox.p.y - extra_y) - 1;
  129.     ibox.q.x = fixed2int_ceiling(bbox.q.x + extra_x) + 1;
  130.     ibox.q.y = fixed2int_ceiling(bbox.q.y + extra_y) + 1;
  131.     width = (ibox.q.x - ibox.p.x) << log2_scale.x;
  132.     raster = bitmap_raster(width);
  133.     band_space = raster << log2_scale.y;
  134.     height = (abuf_nominal / band_space) << log2_scale.y;
  135.     if ( height == 0 )
  136.       height = 1 << log2_scale.y;
  137.     mem = pgs->memory;
  138.     mdev = gs_alloc_struct(mem, gx_device_memory, &st_device_memory,
  139.                    "alpha_buffer_init");
  140.     if ( mdev == 0 )
  141.       return 0;        /* if no room, don't buffer */
  142.     gs_make_mem_abuf_device(mdev, mem, dev, &log2_scale,
  143.                 alpha_bits, ibox.p.x << log2_scale.x);
  144.     mdev->width = width;
  145.     mdev->height = height;
  146.     mdev->bitmap_memory = mem;
  147.     if ( (*dev_proc(mdev, open_device))((gx_device *)mdev) < 0 )
  148.       {    /* No room for bits, punt. */
  149.         gs_free_object(mem, mdev, "alpha_buffer_init");
  150.         return 0;
  151.       }
  152.     gx_set_device_only(pgs, (gx_device *)mdev);
  153.     gx_path_scale_exp2(pgs->path, log2_scale.x, log2_scale.y);
  154.     gx_cpath_scale_exp2(pgs->clip_path, log2_scale.x, log2_scale.y);
  155.     return 1;
  156. }
  157.  
  158. /* Release an alpha buffer. */
  159. private void near
  160. alpha_buffer_release(gs_state *pgs, bool newpath)
  161. {    gx_device_memory *mdev =
  162.       (gx_device_memory *)gs_currentdevice_inline(pgs);
  163.     gx_device *target = mdev->target;
  164.  
  165.     (*dev_proc(mdev, close_device))((gx_device *)mdev);
  166.     gs_free_object(mdev->memory, mdev, "alpha_buffer_release");
  167.     gx_set_device_only(pgs, target);
  168.     gx_cpath_scale_exp2(pgs->clip_path,
  169.                 -mdev->log2_scale.x, -mdev->log2_scale.y);
  170.     if ( !(newpath && !pgs->path->shares_segments) )
  171.       gx_path_scale_exp2(pgs->path,
  172.                  -mdev->log2_scale.x, -mdev->log2_scale.y);
  173. }
  174.  
  175. /* Fill the current path using a specified rule. */
  176. private int near
  177. fill_with_rule(gs_state *pgs, int rule)
  178. {    int code;
  179.     /* If we're inside a charpath, just merge the current path */
  180.     /* into the parent's path. */
  181.     if ( pgs->in_charpath )
  182.       code = gx_path_add_char_path(pgs->show_gstate->path, pgs->path,
  183.                        pgs->in_charpath);
  184.     else
  185.     {    int abits, acode;
  186.  
  187.         gx_set_dev_color(pgs);
  188.         code = gs_state_color_load(pgs);
  189.         if ( code < 0 )
  190.           return code;
  191.         abits = alpha_buffer_bits(pgs);
  192.         if ( abits > 1 )
  193.           { acode = alpha_buffer_init(pgs, pgs->fill_adjust.x,
  194.                           pgs->fill_adjust.y, abits);
  195.             if ( acode < 0 )
  196.               return acode;
  197.           }
  198.         else
  199.           acode = 0;
  200.         code = gx_fill_path(pgs->path, pgs->dev_color, pgs, rule,
  201.                     pgs->fill_adjust.x, pgs->fill_adjust.y);
  202.         if ( acode > 0 )
  203.           alpha_buffer_release(pgs, code >= 0);
  204.         if ( code >= 0 )
  205.           gs_newpath(pgs);
  206.         
  207.     }
  208.     return code;
  209. }
  210. /* Fill using the winding number rule */
  211. int
  212. gs_fill(gs_state *pgs)
  213. {    return fill_with_rule(pgs, gx_rule_winding_number);
  214. }
  215. /* Fill using the even/odd rule */
  216. int
  217. gs_eofill(gs_state *pgs)
  218. {    return fill_with_rule(pgs, gx_rule_even_odd);
  219. }
  220.  
  221. /* Stroke the current path */
  222. int
  223. gs_stroke(gs_state *pgs)
  224. {    int code;
  225.     /* If we're inside a charpath, just merge the current path */
  226.     /* into the parent's path. */
  227.     if ( pgs->in_charpath )
  228.       { if ( pgs->in_charpath == cpm_true_charpath )
  229.           { /* A stroke inside a true charpath should do the */
  230.         /* equivalent of strokepath. */
  231.         code = gs_strokepath(pgs);
  232.         if ( code < 0 )
  233.           return code;
  234.           }
  235.         code = gx_path_add_char_path(pgs->show_gstate->path, pgs->path,
  236.                      pgs->in_charpath);
  237.       }
  238.     else
  239.     {    int abits, acode;
  240.         float orig_width;
  241.  
  242.         gx_set_dev_color(pgs);
  243.         code = gs_state_color_load(pgs);
  244.         if ( code < 0 )
  245.           return code;
  246.         abits = alpha_buffer_bits(pgs);
  247.         if ( abits > 1 )
  248.           { /* Expand the bounding box by the line width. */
  249.             /* This is expensive to compute, so we only do it */
  250.             /* if we know we're going to buffer. */
  251.             float xxyy = fabs(pgs->ctm.xx) + fabs(pgs->ctm.yy);
  252.             float xyyx = fabs(pgs->ctm.xy) + fabs(pgs->ctm.yx);
  253.             float new_width =
  254.               (orig_width = gs_currentlinewidth(pgs)) *
  255.               (1 << (abits / 2));
  256.             fixed extra_adjust =
  257.               float2fixed(max(xxyy, xyyx) * new_width / 2);
  258.             gx_path spath;
  259.  
  260.             /* Scale up the line width. */
  261.             if ( extra_adjust < fixed_1 )
  262.               extra_adjust = fixed_1;
  263.             acode = alpha_buffer_init(pgs,
  264.                     pgs->fill_adjust.x + extra_adjust,
  265.                     pgs->fill_adjust.y + extra_adjust,
  266.                     abits);
  267.             if ( acode < 0 )
  268.               return acode;
  269.             gs_setlinewidth(pgs, new_width);
  270.             /*
  271.              * The alpha-buffer device requires that we fill the
  272.              * entire path as a single unit.
  273.              */
  274.             gx_path_init(&spath, pgs->memory);
  275.             code = gx_stroke_add(pgs->path, &spath, pgs);
  276.             gs_setlinewidth(pgs, orig_width);
  277.             if ( code >= 0 )
  278.               code = gx_fill_path(&spath, pgs->dev_color, pgs,
  279.                       gx_rule_winding_number,
  280.                       pgs->fill_adjust.x,
  281.                       pgs->fill_adjust.y);
  282.             gx_path_release(&spath);
  283.             if ( acode > 0 )
  284.               alpha_buffer_release(pgs, code >= 0);
  285.           }
  286.         else
  287.           { code = gx_stroke_fill(pgs->path, pgs);
  288.           }
  289.         if ( code >= 0 )
  290.           gs_newpath(pgs);
  291.     }
  292.     return code;
  293. }
  294.  
  295. /* Compute the stroked outline of the current path */
  296. int
  297. gs_strokepath(gs_state *pgs)
  298. {    gx_path spath;
  299.     int code;
  300.  
  301.     gx_path_init(&spath, pgs->memory);
  302.     code = gx_stroke_add(pgs->path, &spath, pgs);
  303.     if ( code < 0 )
  304.       return code;
  305.     gx_path_release(pgs->path);
  306.     *pgs->path = spath;
  307.     return 0;
  308. }
  309.